30047d06f6d88469806ed029dccd357405de4dba,src/net/java/sip/communicator/impl/gui/customcontrols/SIPCommFrame.java,SIPCommFrame,setSizeAndLocation,#,121
Before Change
new Integer(height).intValue());
if(x != null && y != null)
this.setLocation(new Integer(x).intValue(),
new Integer(y).intValue());
else
this.setCenterLocation();
}
After Change
if(xString != null && yString != null)
{
this.setLocation(new Integer(xString).intValue(),
new Integer(yString).intValue());
}
else {
this.setCenterLocation();